between

Returns the content that is between left and right:

string test = `string containing a "thing"`;
writeln(test.between(`"`, `"`)); //thing
pure nothrow @nogc @safe
inout(string)
between
(
inout string str
,
inout string left
,
inout string right
,
int start = 0
)

Meta